home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 17 / CU Amiga Magazine's Super CD-ROM 17 (1997)(EMAP Images)(GB)[!][issue 1997-12].iso / CUCD / Utilities / TxtLdrGold / Install_TextloaderHD < prev    next >
Encoding:
Text File  |  1997-07-08  |  5.3 KB  |  236 lines

  1. ; Installer-Script für den Textloader, von Pascal Gisin (08.07.97)
  2.  
  3. (set #notV37
  4. (cat "» Textloader « benötigt OS2 (V37.175) oder höher..."))
  5.  
  6. (set #msg
  7. (cat "\n\n"
  8.      " » Textloader «  Installer script.\n\n"
  9.      "Dieses Script Installiert den TEXTLOADER  "C:"\n\n"
  10.      "Textloader © 1994-1997 B.S.E.\n"
  11.      "All rights reserved. P.Gisin"))
  12.  
  13.  
  14. (set #msg1
  15. (cat "\n\n"
  16.      "Alle Daten die mit einem Häkchen markiert\n"
  17.      "wurden, werden Installiert. Vordefiniert\n"
  18.      "ist als ZIEL, das Verzeichnis C!\n"
  19.      "(Der Font wird Automatisch Installiert!!!).\n\n"
  20.      "INSTALL FOR TEXTLOADER © 1997 BY P.GISIN\n"
  21.      "PLEASE PRESS BUTTON PROCEED OR <WEITER>!\n\n"
  22.      "Und nun viel Spass, mit dem Vollständigen\n"
  23.      "Textloader Software Package...\n\n"
  24.      "              ...wünscht der Autor P.Gisin\n"))
  25.  
  26.  
  27.  
  28. (set #msg2
  29. (cat "\n\n"
  30.      "Der Textloader Editor, wurde nun Installiert!\n"
  31.      "Viel Spass mit dem Textloader wünsche ich Ihnen!\n"
  32.      "Bei Problemen, HOTLINE: (CH)(0)79/322'23'53!!!\n\n"
  33.  
  34.      "Bitte erkundigen Sie sich bei mir über\n"
  35.      "ev. Updates oder andere Programme!!!\n\n"
  36.  
  37.      "        GISIN PASCAL\n"
  38.      "        FIECHTENWEG 11\n"
  39.      "        CH - 4147 AESCH"))
  40.  
  41. (set #SPEZIAL
  42. (cat "\n\n"
  43.      "Nun werden auf Wunsch, noch zusätzliche Librarys\n"
  44.      "Installiert, die nicht für den Textloader nötig\n"
  45.      "sind! Aber von vielen anderen Programmen benötigt\n"
  46.      "werden! Wenn Sie PROCEED anklicken, werden diese\n"
  47.      "Libs installiert. Haben Sie bereits eine Version,\n"
  48.      "Installiert. Wird Ihnen das Mitgeteilt!... \n"))
  49.  
  50.  
  51. ;=============================================================================
  52. ; OS2 ?
  53.  
  54. (if (< (/ (getversion) 65536) 37)
  55. (
  56.     (abort #notV37)
  57. ))
  58.  
  59. ;=============================================================================
  60.  
  61. (message #msg)
  62. (message #msg1)
  63. (welcome)
  64.  
  65. (copyfiles
  66.     (prompt "Texteditor Textloader")
  67.     (help " Die Textloader Installation wurde stark\n vereinfacht. Bitte Markieren Sie\n jede Datei die Sie Installieren möchten\n mit einem Häckchen!\n\n Der <Personal.font>, wird Automatisch, ohne\n Abfrage Installiert.")
  68.     (source "Textloader5Gold")
  69.     (dest "C:" )
  70.     (confirm)
  71. )
  72.  
  73. (complete 10)
  74.  
  75. (copyfiles
  76.     (prompt "Icon/Pictogramm von Textloader?")
  77.     (help "Hilfe ist leider noch nicht geschrieben!")
  78.     (source "Textloader5Gold.info")
  79.     (dest "C:" )
  80.     (confirm)
  81. )
  82.  
  83. (copyfiles
  84.     (prompt " Installation für den Textloader.font?\n Bitte Help anklicken!")
  85.     (help "Der Personal.font ist ein spezieller\n Zeichensatz, den der Textloader benutzt!\n Dieser Font bietet viele Vorteile,\n die nicht mit dem Standard TOPAZ-font\n Ausgenutzt werden können.\n\n\n BITTE UMBEDINGT INSTALLIEREN...")
  86.     (source "TL_Fonts")
  87.     (dest "Fonts:" )
  88.     (infos)
  89.     (all)
  90.  
  91. )
  92.  
  93. (complete 20)
  94.  
  95. (copyfiles
  96.     (prompt "Textloader Dokumentationen!")
  97.     (help "only the viewer no doc will be installed")
  98.     (source "Textloader.dok")
  99.     (dest "C:" )
  100.     (confirm)
  101. )
  102.  
  103. (copyfiles
  104.     (prompt "Icon/Piktogramm mitkopieren?")
  105.     (help "only the viewer no doc will be installed")
  106.     (source "Textloader.dok.info")
  107.     (dest "C:" )
  108.     (confirm)
  109. )
  110.  
  111. (copyfiles
  112.     (prompt "Textloader.guide installieren?")
  113.     (help "only the viewer no doc will be installed")
  114.     (source "Textloader.guide")
  115.     (dest "C:" )
  116.     (confirm)
  117. )
  118.  
  119. (copyfiles
  120.     (prompt "Textloader.guide.info kopieren? ICON?")
  121.     (help "only the viewer no doc will be installed")
  122.     (source "Textloader.guide.info")
  123.     (dest "C:" )
  124.     (confirm)
  125. )
  126.  
  127. (copyfiles
  128.     (prompt "Textloader.history installieren?")
  129.     (help "Installiert die History Dokumentation!")
  130.     (source "History.dok")
  131.     (dest "C:" )
  132.     (confirm)
  133.  
  134. )
  135.  
  136. (complete 50)
  137.  
  138. (copyfiles
  139.    (prompt "Textloader.history <ICON> kopieren?")
  140.    (help "Installiert das Piktogramm! Der Textdatei!")
  141.    (source "History.dok.info")
  142.    (dest "C:" )
  143.    (confirm)
  144. )
  145.  
  146. (copyfiles
  147.    (prompt "PPshow4.0 von N.Francois Installieren?")
  148.    (help "Installiert PPshow!")
  149.    (source "Util/ppshow")
  150.    (dest "C:" )
  151.    (confirm)
  152.  
  153. )
  154.  
  155. (set #copying-Mathieeedoub  "\nCopying Mathieeedoubbas.lib to LIBS:")
  156. (set #copying-Mathrans       "\nCopying Mathieeedoubbtrans.lib to LIBS:")
  157.     
  158.  
  159. (copylib
  160.     (prompt "Copying-Mathieeedoub")
  161.     (source "TL_Libs/mathieeedoubbas.library")
  162.     (dest "sys:libs/")
  163.     (infos)
  164.     (help @copylib-help)
  165.     (confirm)
  166. )
  167.  
  168. (copylib
  169.     (prompt #copying-mathrans)
  170.     (source "TL_Libs/mathieeedoubtrans.library")
  171.     (dest "sys:libs/")
  172.     (infos)
  173.     (help @copylib-help)
  174.     (confirm)
  175. )
  176.  
  177.  
  178. (message #SPEZIAL)
  179.  
  180. (complete 75)
  181.  
  182. (copylib
  183.     (prompt "Copying Powerpacker.library...")
  184.     (source "TL_Libs/powerpacker.library")
  185.     (dest "sys:libs/")
  186.     (infos)
  187.     (help @copylib-help)
  188.     (confirm)
  189. )
  190.  
  191. (copylib
  192.     (prompt "Copying Reqtools.library")
  193.     (source "TL_Libs/reqtools.library")
  194.     (dest "sys:libs/")
  195.     (infos)
  196.     (help @copylib-help)
  197.     (confirm)
  198. )
  199.  
  200. (copylib
  201.     (prompt "Copying Req.library")
  202.     (source "TL_Libs/req.library")
  203.     (dest "sys:libs/")
  204.     (infos)
  205.     (help @copylib-help)
  206.     (confirm)
  207. )
  208.  
  209. (complete 90)
  210.  
  211. (copylib
  212.     (prompt "Copying Arp.library")
  213.     (source "TL_Libs/arp.library")
  214.     (dest "sys:libs/")
  215.     (infos)
  216.     (help @copylib-help)
  217.     (confirm)
  218. )
  219.  
  220. (copylib
  221.     (prompt "Copying Iff.library")
  222.     (source "TL_Libs/iff.library")
  223.     (dest "sys:libs/")
  224.     (infos)
  225.     (help @copylib-help)
  226.     (confirm)
  227. )
  228.  
  229. (complete 100)
  230.  
  231. (message #msg2)
  232.  
  233. (exit (quiet))
  234.  
  235.  
  236.